github.com/klauspost/compress/zstd.sequenceDecs.dict (field)

22 uses

	github.com/klauspost/compress/zstd (current package)
		history.go#L65: 	h.decoders.dict = dict.content
		seqdec.go#L68: 	dict         []byte
		seqdec.go#L95: 	s.dict = nil
		seqdec.go#L97: 		s.dict = hist.dict.content
		seqdec.go#L120: 	if len(s.dict) == 0 {
		seqdec.go#L132: 		printf("Execute %d seqs with hist %d, dict %d, literals: %d into %d bytes\n", len(seqs), len(hist), len(s.dict), len(s.literals), s.seqSize)
		seqdec.go#L146: 			if len(s.dict) == 0 {
		seqdec.go#L151: 			dictO := len(s.dict) - (seq.mo - (t + len(hist)))
		seqdec.go#L152: 			if dictO < 0 || dictO >= len(s.dict) {
		seqdec.go#L153: 				return fmt.Errorf("match offset (%d) bigger than current history+dict (%d)", seq.mo, t+len(hist)+len(s.dict))
		seqdec.go#L156: 			if end > len(s.dict) {
		seqdec.go#L157: 				n := len(s.dict) - dictO
		seqdec.go#L158: 				copy(out[t:], s.dict[dictO:])
		seqdec.go#L162: 				copy(out[t:], s.dict[dictO:end])
		seqdec.go#L346: 			if len(s.dict) == 0 {
		seqdec.go#L351: 			dictO := len(s.dict) - (mo - (len(out) + len(hist)))
		seqdec.go#L352: 			if dictO < 0 || dictO >= len(s.dict) {
		seqdec.go#L356: 			if end > len(s.dict) {
		seqdec.go#L357: 				out = append(out, s.dict[dictO:]...)
		seqdec.go#L358: 				ml -= len(s.dict) - dictO
		seqdec.go#L360: 				out = append(out, s.dict[dictO:end]...)
		seqdec_amd64.go#L56: 	if len(s.dict) > 0 {